/* ========================================
   SATIKOMO - Dashboard E-Walidata Styles
   ======================================== */

/* Hero Section */
.dashboard-hero {
  background: linear-gradient(
    135deg,
    var(--primary-700) 0%,
    var(--primary-800) 100%
  );
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.dashboard-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: var(--accent-500);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(90px);
}

.dashboard-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.dashboard-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dashboard-hero-content h1 i {
  color: var(--accent-500);
}

.dashboard-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Main Page */
.dashboard-page {
  padding: 0;
  background: var(--gray-50);
  min-height: calc(100vh - 400px);
}

.dashboard-page .container {
  max-width: 100%;
  padding: 0;
}

.dashboard-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .dashboard-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .dashboard-hero-content h1 {
    font-size: 1.75rem;
  }
}
